.whyus-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 150px 20px;
    overflow: hidden;
}

.whyus-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 1300px;
    gap: 35px;
}

.whyus-header {
    text-align: center;
}

.whyus-header h2 {
    font-size: 38px;
}

.whyus-header h2 span {
    color: #6366F1;
}

.whyus-header p {
    font-size: 19px;
    color: #000000b4;
    margin-top: 8px;
}

.whyus-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.whyus-card {
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 40px 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whyus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.08);
}

.whyus-icon {
    font-size: 40px;
    background-color: #6365f11a;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #6365f133;
    margin-bottom: 5px;
}

.whyus-card h3 {
    font-size: 24px;
    font-weight: 700;
}

.whyus-card p {
    color: #0000008c;
    font-size: 16px;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .whyus-cards {
        grid-template-columns: 1fr;
    }
}
